Skip to content

Commit

Permalink
docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
c4554ndr4 committed Oct 19, 2020
1 parent df02220 commit d50c583
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: '3'
services:
freeipa:
image: cloyne/freeipa-server
container_name: freeipa-server-container
hostname: 'ipa.example.test'
networks:
server3:
ipv4_address: '172.25.0.2'
environment:
- DEBUG_TRACE=1
- DEBUG_NO_EXIT=1
volumes:
- ../sys/fs/cgroup:/sys/fs/cgroup:ro
- data:/data
ports:
- "80:80"
- "443:443"
- "3000:3000"

volumes:
data:


networks:
server3:
driver: bridge
ipam:
config:
- subnet: '172.25.0.0/24'

0 comments on commit d50c583

Please sign in to comment.