PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   ???   Download  
File: ???
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change: Update of docker-compose.yml
Date: 9 days ago
Size: 392 bytes
 

Contents

Class file image Download
version: '2' services: database: image: postgres:9.5 environment: POSTGRES_PASSWORD: 'secret' POSTGRES_USER: 'airship' airship: build: context: . dockerfile: docker/Dockerfile.airship ports: - "8080:80" depends_on: - database links: - database