mirror-chhoto-url/compose.yaml

30 lines
827 B
YAML
Raw Normal View History

2020-02-14 19:17:56 +00:00
services:
simply-shorten:
2022-11-04 06:39:53 +00:00
image: sintan1729/simply-shorten:latest
2022-11-04 06:14:47 +00:00
restart: unless-stopped
container_name: simply-shorten
ports:
- 4567:4567
2020-02-16 15:53:18 +00:00
environment:
# Change if you want to mount the database somewhere else
2022-11-05 19:44:15 +00:00
# In this case, you can get rid of the db volume below
# - db_url=/urls.sqlite
2022-11-11 02:17:39 +00:00
# Change it in case you want to set the website name
# displayed in front of the shorturls, defaults to
# the hostname you're accessing it from
# - site_url=https://www.example.com
- username=admin
- password=$3CuReP4S$W0rD
2020-02-16 15:53:18 +00:00
volumes:
- db:/urls.sqlite
2022-11-04 06:14:47 +00:00
networks:
- proxy
volumes:
db:
2020-02-16 15:53:18 +00:00
2022-11-04 06:39:53 +00:00
2020-02-16 15:53:18 +00:00
networks:
proxy:
2022-11-04 06:14:47 +00:00
external: true