Sign inSign up

pymrdocker/ipttemplate

By pymrdocker

Updated 4 months ago

Image
0

765

pymrdocker/ipttemplate repository overview

Changes from V1 tag to V2 tag

change user from developer to admin
change the virtual environment name to /opt/virt

docker-compose.demo2.yml

version: "3.9" services: ubuntu-all-in-one: image: johndoe/ubuntu-all-in-one-demo:1.0 container_name: ubuntu-all-in-one-demo-2 restart: unless-stopped

ports:
  # SSH exposed on host port 2299 instead of 2222
  - "2299:22"

  # Django exposed on host port 9000 instead of 8000
  - "9000:8000"

  # FastAPI exposed on host port 9001 instead of 8001
  - "9001:8001"

  # Node.js exposed on host port 4000 instead of 3000
  - "4000:3000"

  # MySQL exposed on host port 3310 instead of 3307
  - "3310:3306"

  # PostgreSQL exposed on host port 5440 instead of 5433
  - "5440:5432"

environment:
  DEV_USERNAME: developer
  DEV_PASSWORD: developer123

  MYSQL_ROOT_PASSWORD: root_password
  MYSQL_DATABASE: app_db
  MYSQL_USER: app_user
  MYSQL_PASSWORD: app_password

  POSTGRES_DB: supabase_db
  POSTGRES_USER: supabase_user
  POSTGRES_PASSWORD: supabase_password

volumes:
  - ./workspace-demo2:/workspace

tty: true
stdin_open: true

Tag summary

Content type

Image

Digest

sha256:570969933

Size

565.3 MB

Last updated

4 months ago

docker pull pymrdocker/ipttemplate:v2