mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-05 15:25:08 +02:00
17 lines
281 B
YAML
Executable File
17 lines
281 B
YAML
Executable File
version: '3'
|
|
services:
|
|
django:
|
|
container_name: demo
|
|
image: docker.kotyczka.ch/django-app:latest
|
|
build:
|
|
context: .
|
|
ports:
|
|
- "9000:8000"
|
|
- "7070:8080"
|
|
networks:
|
|
- ametiq
|
|
restart: unless-stopped
|
|
networks:
|
|
ametiq:
|
|
external: true
|