Sign inSign up

clinte/ase15-7_base

By clinte

•Updated over 8 years ago

An image based on the developer edition of Sybase ASE 15.7

Image
0

286

clinte/ase15-7_base repository overview

Ports 5000 and 5001 are exposed for a sql server and a backup server, respectively. The names are SYBASE and SYBASE_BS, the password of the 'sa' user is 'password'. CentOS is used as basis and the Sybase ASE is installed within /opt/sybase.

This image is meant as the basis for concrete containers which should provide an ENTRYPOINT script which must change the interfaces file and then start the servers. The interfaces file originally uses 'localhost' as hostname. It seems necessary to replace this by the IP address of the docker host, to allow external connections, e.g.:

#!/bin/bash                           
. /opt/sybase/SYBASE.sh               
# change user host ip in interfaces  file
hostip="$(hostname -i)"               
sed -i "s/localhost/${hostip}/g" $SYBASE/interfaces                         

startserver -f $SYBASE/$SYBASE_ASE/install/RUN_SYBASE_BS &                  
startserver -f $SYBASE/$SYBASE_ASE/install/RUN_SYBASE                           

# wait for server coming up          
sleep 20s      

# additional actions...

Tag summary

Content type

Image

Digest

Size

2.5 GB

Last updated

over 8 years ago

docker pull clinte/ase15-7_base