Files
hermes-docker/selfhosted_extra/docker-compose.yaml

40 lines
1.3 KiB
YAML
Raw Normal View History

2025-04-01 18:03:17 +00:00
version: '3.6'
services:
portainer:
image: portainer/portainer-ce:2.20.3
container_name: self_portainer
networks:
internal_traffic:
ipv4_address: 192.168.3.50
deploy:
resources:
limits:
cpus: '0.50'
memory: 128M
volumes:
- data_portainer:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: no
2025-06-22 19:20:31 +00:00
tube:
image: oxygenz/clipbucket-v5:latest
container_name: self_clipbucket
networks:
internal_traffic:
ipv4_address: 192.168.3.60
volumes:
- data_clipbucket_db:/var/lib/mysql
- /opt/video:/srv/http/clipbucket
#- /opt/video_ramdisk:/srv/http/clipbucket/upload/files/conversion_queue/
2025-04-01 18:03:17 +00:00
volumes:
data_portainer:
external: true
2025-06-22 19:20:31 +00:00
data_clipbucket_db:
external: true
2025-04-01 18:03:17 +00:00
networks:
internal_traffic:
external: true