change user from developer to admin
change the virtual environment name to /opt/virt
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
Content type
Image
Digest
sha256:570969933…
Size
565.3 MB
Last updated
4 months ago
docker pull pymrdocker/ipttemplate:v2