35 líneas
741 B
YAML
35 líneas
741 B
YAML
version: '2'
|
|
|
|
services:
|
|
icecast2:
|
|
build: ./docker-icecast
|
|
#image: infiniteproject/icecast
|
|
restart: always
|
|
hostname: icecast2
|
|
container_name: icecast2
|
|
environment:
|
|
- ICECAST_ADMIN_PASSWORD:"alg0ritm0"
|
|
- ICECAST_ADMIN_USERNAME:"pberr"
|
|
# entrypoint:
|
|
# - /bin/bash
|
|
# - /entrypoint.sh
|
|
# volumes:
|
|
# - ./icecast2/entrypoint.sh:/entrypoint.sh
|
|
# - ./default:/etc/default/icecast2
|
|
# - ./icecast2/icecast2:/etc/icecast2
|
|
# - ./icecast2/lagramola:/lagramola
|
|
expose:
|
|
- 8000
|
|
ports:
|
|
- "8000:8000"
|
|
networks:
|
|
mynet:
|
|
ipv4_address: 172.129.0.101
|
|
|
|
networks:
|
|
mynet:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.129.0.0/24
|