mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
19 lines
360 B
YAML
19 lines
360 B
YAML
version: '2'
|
|
services:
|
|
nginx:
|
|
# restart: "always"
|
|
build: ./nginx/
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
links:
|
|
- "api:api"
|
|
volumes:
|
|
- /etc/letsencrypt:/etc/letsencrypt
|
|
- /var/lib/letsencrypt:/var/lib/letsencrypt
|
|
api:
|
|
image: fergalmoran/podnoms.api
|
|
container_name: api
|
|
expose:
|
|
- 5000
|