You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
508 B
24 lines
508 B
version: '3'
|
|
|
|
services:
|
|
linx:
|
|
image: andreimarcu/linx-server:latest
|
|
container_name: linx
|
|
restart: always
|
|
ports:
|
|
- 8080:8080
|
|
networks:
|
|
- linx
|
|
volumes:
|
|
- './linx/meta:/data/meta'
|
|
- './linx/files:/data/files'
|
|
# labels:
|
|
# - "traefik.enable=true"
|
|
# - "traefik.port=8080"
|
|
# - "traefik.backend=linx"
|
|
# - "traefik.frontend.rule=Host:linx.example.com"
|
|
command: ["-sitename=linx", "-allowhotlink"]
|
|
|
|
networks:
|
|
linx:
|
|
external: true
|