1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
chhoto-url/docker-compose.yml

26 lines
533 B
YAML
Raw Normal View History

2020-02-14 13:17:56 -06:00
version: "3"
services:
2020-02-16 09:53:18 -06:00
url:
2022-11-04 01:39:53 -05:00
image: sintan1729/simply-shorten:latest
2022-11-04 01:14:47 -05:00
restart: unless-stopped
container_name: simply-shorten
ports:
- 4567:4567
2020-02-16 09:53:18 -06:00
environment:
# Change if you want to mount the database somewhere else
# - db_url=/urls.sqlite
- username=admin
- password=$3CuReP4S$W0rD
2020-02-16 09:53:18 -06:00
volumes:
- db:/urls.sqlite
2022-11-04 01:14:47 -05:00
networks:
- proxy
volumes:
db:
2020-02-16 09:53:18 -06:00
2022-11-04 01:39:53 -05:00
2020-02-16 09:53:18 -06:00
networks:
proxy:
2022-11-04 01:14:47 -05:00
external: true