PHP Classes

File: docker-compose.yml

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change: Reduced complexity of docker-compose setup, the psql docker image already has an option for user/password. Also, the database appears to be create automagically when type the database name in the Installer portion. The Installer settings you should use are as follows: Host: database Port:blank User:airship password:secret Database:airship
Date: 7 years 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