19 lines
414 B
YAML
19 lines
414 B
YAML
version: '3.1'
|
|
services:
|
|
python:
|
|
image: python.slim:latest
|
|
container_name: python
|
|
restart: always
|
|
environment:
|
|
- VIRTUAL_HOST=shannon.antopoid.com
|
|
- LETSENCRYPT_HOST=shannon.antopoid.com
|
|
- LETSENCRYPT_EMAIL=poidevin.freeboxos.fr@gmail.com
|
|
ports:
|
|
- 8888:8080
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: nginx-proxy
|
|
|